home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / game / shoot / athrust.lha / AmigaThrust / src / init.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-09-05  |  485 b   |  24 lines

  1.  
  2. /* Written by Peter Ekberg, peda@lysator.liu.se */
  3.  
  4. #ifndef INIT_H
  5. #define INIT_H
  6.  
  7. #include "thrust_t.h"
  8.  
  9. #ifdef __STDC__
  10. void turnship(void);
  11. void makeshieldedship(void);
  12. void makefuelmap(byte *fuelmap);
  13. int initmem(void);
  14. void inithardware(int argc, char **argv);
  15. void initscreen(int round);
  16. void initgame(int round, int reset, int xblock, int yblock);
  17. int initsoundIt(void);
  18. void restoresoundIt(void);
  19. void restorehardware(void);
  20. void restoremem(void);
  21. #endif
  22.  
  23. #endif /* INIT_H */
  24.